home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / database / ad3dcal3.zip / AD3DCAL.HIS < prev    next >
Text File  |  1996-09-04  |  4KB  |  117 lines

  1. TAdrock3DCalendar History File
  2. ==============================
  3.  
  4. 6th December, 1995    Version 1.00
  5.  
  6.     NEW & UPDATED FEATURES
  7.     ----------------------
  8.     Released to CompuServe, included Help File, KWF File for Delphi, AD3DCAL.DCU 
  9.     ADDATE.DCU AD3DCAL.KWF AD3DCAL.HLP.
  10.  
  11. 26th February, 1996    Version 1.10
  12.  
  13.     BUG FIX'S & MODIFICATIONS
  14.     --------------------------
  15.     Fixed OnWeekChange event, it was never getting triggered when you changed weeks on the 
  16.     calendar.
  17.  
  18. 11th March, 1996    Version 1.20
  19.  
  20.     BUG FIX'S & MODIFICATIONS
  21.     --------------------------
  22.     Fixed problem when selecting Labels to be shown on the calendar. The labels would not 
  23.     be visible, this could have been fixed by selecting the month and year fonts. But it 
  24.     is fixed now...
  25.     
  26.     Keyboard date selection did not function correctly.
  27.  
  28. 5th May, 1996    Version 1.21
  29.  
  30.     BUG FIX'S & MODIFICATIONS
  31.     --------------------------
  32.     Fixed a bug in the Archive Creation Software in the 16Bit Sharware version that caused 
  33.     a Unit Version Mismatch error.
  34.  
  35. 13th June, 1996    Version 1.22
  36.  
  37.     BUG FIX'S & MODIFICATIONS
  38.     --------------------------
  39.     We have fixed a bug (Not Ours) that hopefully not many people have seen. The problem 
  40.     appeared in the TAdrockDate Class code that the 3dCalendar uses.
  41.             
  42.     The problem occurs only during linking and the error is:
  43.     
  44.     Error(0) : Overflow in conversion or arithmetic operation
  45.     
  46.     After talking to Borland Tech Support in Sydney,Austrailia we were no better off, but 
  47.     after searching around the WEB we found a fix for it. 
  48.     
  49.     We thank Duncan Murdock that submitted the bug and fix for it to the
  50.     web site (http://www.DataWeb.nl/~r.p.Sterkenburg/bugs2 )
  51.     
  52.     The error is definitly a BORLAND DELPHI COMPILER / LINKER ERROR.
  53.     
  54.     The code below will reproduce the bug.
  55.     ***********************************
  56.     
  57.     Unit ConstBug;
  58.     
  59.     Interface
  60.             
  61.     Const
  62.       c1 = 1.0;
  63.       c2 = 2.0;
  64.                 
  65.     Implementation
  66.     
  67.     end.
  68.     
  69.     ***********************************
  70.     Mr Murdock states, just add this unit to a project and make it twice. On the second 
  71.     make when ConstBug.DCU is just being linked( Not Compiled) you should get the error. 
  72.     (I tried it and it did not fail) but it did definitly prove that the error is produced 
  73.     when using floating point constants. I added 3 floating point constants to our 
  74.     AdDate.PAS and when it did fail I had 3 error(0)'s.
  75.     
  76.     When the ConstBug code above does fail you will get 2 error (0)'s.
  77.     
  78.     We will be informing Borland Tech Support of this bug and fix.
  79.     
  80.     The FIX?, use Typed Constants rather than UnTyped Constants.
  81.     
  82.     Instead of   c1 = 1.0;   Use   c1 : Single = 1.0;
  83.  
  84. 28th June, 1996    Version 1.23
  85.  
  86.     BUG FIX'S & MODIFICATIONS
  87.     --------------------------
  88.     Corrected a bug in the isValidDate function of the TAdrock DateClass. I had the a 
  89.     routine that checks for leap years calling IsLeapYear(TDateTime) when it should have 
  90.     been calling IsLeapYearI(Integer).
  91.  
  92. 11th July, 1996    Version 1.24
  93.  
  94.     BUG FIX'S & MODIFICATIONS
  95.     --------------------------
  96.     There was a Hint property in the control but no ShowHint or ParentShowHint properties.
  97.     
  98.     Added the ShowHint and ParentShowHint property. 
  99.  
  100. 22nd July, 1996    Version 1.25
  101.  
  102.     BUG FIX'S & MODIFICATIONS
  103.     --------------------------
  104.     V1.24 was not updated, it still had V1.23 in the source code.
  105.     
  106.     Corrected a bug in the routine to determine the week number of the year it would 
  107.     sometimes give a false week for the end of the year.
  108.     
  109.     January 1st, can be in Week 1, 52, or 53. This is the ISO standard for week numbers.
  110.                 
  111.  
  112. Adrock Software, Byte Computer & Software Ltd
  113. CompuServe 770135,110  Internet ADROCK@USA.NET
  114. http://WWW.MailHost.Net/~Byte
  115.  
  116. 4th September, 1996  01:49 PM
  117.